|
ED
|
not used
|
RT
|
avaliable
|
This method can set the value of a variable.
Sub Value() Dim zVariables As Variables 'Object from type Variables Dim zVariable As Variable 'Child object from type Variables 'Fill the objects Set zVariables = thisProject.Variables 'Take the variable "test" Set zVariable = zVariables.Item("test") 'Set the value 10 on the variable zVariable.Value = 10 End Sub